home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d8 / t3script.arc / ON.SLT < prev    next >
Encoding:
Text File  |  1990-04-14  |  1.1 KB  |  39 lines

  1. /////////////////////////////////////////////////////////////////////////
  2. //             ON.SLT  -  by Terry Robertson (October 1988)            //
  3. // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //
  4. //                                                                     //
  5. //  This script switches on Zmodem Autodownload. There is a second     //
  6. //  script called OFF which switches Autodownload off again.           //
  7. //                                                                     //
  8. //  For details of Autodownload see the TELIX manual - TELIX.DOC.      //
  9. //                                                                     //
  10. //  This script is most useful when it is "attached" to a function     //
  11. //  key.                                                               //
  12. //                                                                     //
  13. /////////////////////////////////////////////////////////////////////////
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26. Main()
  27.  
  28. {
  29. int     xpos, ypos;
  30.  
  31. _zmod_auto = 1;
  32.  
  33. xpos = getx();
  34. ypos = gety();
  35. pstraxy(" Auto Zmodem ON ",0,24,112);
  36. gotoxy(xpos, ypos);
  37.  
  38. }
  39.